LassoScript Utility
Basics Browse Detail

[Date->Format]

Tag Link [Date->Format] Category Date
Type Member Source Available No
Support Preferred Version 6.0
Change Unchanged Data Source Any
Output Type String Security None
Implementation LCAPI Sets Lasso 8.5, Lasso 8.0, Lasso 7.0, Lasso 6.0

Description

[Date->Format] outputs a Lasso date data type in any format. The tag requires one parameter which defines how the date should be formatted.

%D U.S. date format (mm/dd/yyyy).
%Q MySQL date format (yyyy-mm-dd).
%q MySQL timestamp format (yyyymmddhhmmss).
%r 12-hour time format (hh:mm:ss [AM/PM]).
%T 24-hour time format (hh:mm:ss).
%Y 4-digit year.
%y 2-digit year.
%m Month number (1=January, 12=December).
%B Full English month name (e.g. "January").
%b Abbreviated English month name (e.g. "Jan").
%d Day of month (1-31).
%w Day of week (1=Sunday, 7=Saturday).
%W Week of year.
%A Full English weekday name (e.g. "Wednesday").
%a Abbreviated English weekday name (e.g. "Wed").
%H 24-hour time hour (0-23).
%h 12-hour time hour (1-12).
%M Minute (0-59).
%S Second (0-59).
%p AM/PM for 12-hour time.
%G GMT time zone indicator.
%z Time zone offset in relation to GMT (e.g. -0800).
%% A percent sign.

By default, all output is zero padded to two characters. For example, 02/03/2002.

A hyphen - between the % and the letter code instructs Lasso not to pad the output. For example, 2/3/2002

An underscore _ between the % and the letter instructs Lasso to pad the output with spaces. For example, 2/ 3/2002.

Syntax

[(Date)->(Format: 'FormatString')]

Parameters

Required Parameters
Format The format in which the date should be output.

Change Notes

The %q format was added in 7.0.3.

Examples

To format a Lasso date:

The following example formats a Lasso date 8/29/2002 12:00:00 as a MySQL date string 20020829120000.

[Var:'MyDate'=(Date: '8/29/2002 12:00:00')]
[$MyDate->(Format:'%Y%m%d%H%M%S')]

20020829120000